Wyo Java Ch20Proj2

Write a class named Ch20Proj2 that contains the following static methods.

public static boolean containsValue(Map<Object, Set<Object>> map, Object value)

In this assignment, you must determine whether value is found as a value in map. The value true is returned if value is found as a value of one of the keys in map. False is returned otherwise. Do not use the containsValue method that already exists in the Map interface.

Be sure to execute code in the main method that makes the program easy to grade (i.e. print out the contents of map where necessary to show that the algorithm works correctly.)

Your program must follow the class Coding Standards. Save all of the files associated with this assignment to a folder named Ch20Proj2 in the appropriate network folder.

Submit the printed code stapled to a screen capture of the runtime output.